Skip to content

Instantly share code, notes, and snippets.

View zeynep-turker's full-sized avatar

Zeynep Türker zeynep-turker

View GitHub Profile
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//////////////////////
ExpandableListAdapter expandableListAdapter = new ExpandableListAdapter(this, dgResults);
@zeynep-turker
zeynep-turker / Main.java
Created December 4, 2022 13:17
Missing Digit Solution
import java.util.*;
public class Main {
public static String MissingDigit(String str) {
String[] newStr = new String[2];
char op = 'c';
String resultValue = "";
str = str.replace(" ", "");
if (str.contains("+")) {