FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProgramming/ArrayBasedProblems/subset.java at main · pradeepkumar24rk/JavaProgramming · GitHub
pradeepkumar24rk
/
JavaProgramming
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaProgramming
/
ArrayBasedProblems
/
subset.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (26 loc) · 724 Bytes
Breadcrumbs
JavaProgramming
/
ArrayBasedProblems
/
subset.java
Copy path
File metadata and controls
35 lines (26 loc) · 724 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package
ArrayBasedProblems
;
public
class
subset
{
public
static
void
main
(
String
[]
args
) {
// System.out.println("Hello, World!");
int
a
[]={
1
,
2
,
3
};
for
(
int
i
=
0
;
i
<
a
.
length
;
i
++){
String
s
=
""
;
int
k
=
1
;
while
(
k
<
a
.
length
){
for
(
int
j
=
i
;
j
<
k
;
j
++)
{
s
+=
a
[
j
]+
" "
;
}
k
++;
System
.
out
.
println
();
}
System
.
out
.
print
(
s
);
}
}
}
// Explaination of problem:
// Given an integer array nums of unique elements, return all possible subsets (the power set).
// The solution set must not contain duplicate subsets. The subsets can be returned in any order.
// output
// 1 1 2
// 2
Back
|
FazBrowse Home
|
New Git URL