FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
hackerrank-java/src/JavaBitset.java at master · anishLearnsToCode/hackerrank-java · GitHub
anishLearnsToCode
/
hackerrank-java
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
8
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
hackerrank-java
/
src
/
JavaBitset.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (26 loc) · 1.24 KB
Breadcrumbs
hackerrank-java
/
src
/
JavaBitset.java
Copy path
File metadata and controls
32 lines (26 loc) · 1.24 KB
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
// https://www.hackerrank.com/challenges/java-bitset/problem
import
java
.
util
.
BitSet
;
import
java
.
util
.
HashMap
;
import
java
.
util
.
Map
;
import
java
.
util
.
Scanner
;
import
java
.
util
.
function
.
BiConsumer
;
public
class
JavaBitset
{
public
static
void
main
(
String
[]
args
) {
Scanner
scanner
=
new
Scanner
(
System
.
in
);
int
size
=
scanner
.
nextInt
();
int
queries
=
scanner
.
nextInt
();
BitSet
[]
bitSets
=
new
BitSet
[]{
new
BitSet
(
size
),
new
BitSet
(
size
)};
Map
<
String
,
BiConsumer
<
Integer
,
Integer
>>
operations
=
new
HashMap
<>();
operations
.
put
(
"AND"
, (
index1
,
index2
) ->
bitSets
[
index1
-
1
].
and
(
bitSets
[
index2
-
1
]));
operations
.
put
(
"OR"
, (
index1
,
index2
) ->
bitSets
[
index1
-
1
].
or
(
bitSets
[
index2
-
1
]));
operations
.
put
(
"XOR"
, (
index1
,
index2
) ->
bitSets
[
index1
-
1
].
xor
(
bitSets
[
index2
-
1
]));
operations
.
put
(
"SET"
, (
index1
,
index2
) ->
bitSets
[
index1
-
1
].
set
(
index2
));
operations
.
put
(
"FLIP"
, (
index1
,
index2
) ->
bitSets
[
index1
-
1
].
flip
(
index2
));
while
(
queries
-- >
0
){
operations
.
get
(
scanner
.
next
())
.
accept
(
scanner
.
nextInt
(),
scanner
.
nextInt
());
System
.
out
.
println
(
bitSets
[
0
].
cardinality
() +
" "
+
bitSets
[
1
].
cardinality
());
}
}
}
Back
|
FazBrowse Home
|
New Git URL