Skip to content

Instantly share code, notes, and snippets.

View fahmi-dot's full-sized avatar

Agil Fahmi Raka S. fahmi-dot

View GitHub Profile
@fahmi-dot
fahmi-dot / Dua.java
Created June 4, 2025 14:02
SKK Migas
public class Dua {
public static void main(String[] args) {
int n = 10;
solutionA(n);
solutionB(n);
solutionC(n);
solutionD(n);
}
// NOMOR 2a
@fahmi-dot
fahmi-dot / Anagram.java
Last active June 3, 2025 13:39
Pre Assessment Software Engineer - Back End Ultra Voucher
import java.util.ArrayList;
public class Anagram {
public static void main(String[] args) {
String[] arr = {"cook", "save", "taste", "aves", "vase", "state", "map"};
ArrayList<ArrayList<String>> result = solution(arr);
System.out.println(result);;
}