Skip to content

Commit

Permalink
Add qr code generator
Browse files Browse the repository at this point in the history
  • Loading branch information
sangaryousmane committed Dec 21, 2023
1 parent de6de21 commit 9302953
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/JS/qrcodeGenerator/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ body{
.container input{
width: 100%;
height: 50px;
border: 1px solid #494eea;
border: 1px solid #333;
outline: 0;
padding: 10px;
margin: 10px 0 20px;
Expand Down
8 changes: 5 additions & 3 deletions src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@

import java.util.*;
import java.util.concurrent.atomic.AtomicReference;
import java.util.logging.Level;
import java.util.logging.Logger;

import static intermediate.Sorting.swap;


public class Main {

private static Logger logger=Logger.getLogger(Main.class.getName());
public static void main(String[] args) {
int[] nums = {19, 48, 99, 71, 13, 52, 96, 73, 86, 7};
mergeSort(nums);
System.out.println(Arrays.toString(nums));
logger.log(Level.INFO, "I am fine");
}

public static void mergeSort(int[] nums) {
Expand Down

0 comments on commit 9302953

Please sign in to comment.