Skip to content

Instantly share code, notes, and snippets.

View AmniX's full-sized avatar
🎯
Focusing

Aman tonk AmniX

🎯
Focusing
  • Paypay
  • Tokyo
  • 16:51 (UTC +09:00)
View GitHub Profile
@AmniX
AmniX / cloudSettings
Last active June 17, 2020 08:38
VSCode Settings for Future
{"lastUpload":"2020-06-17T08:38:26.728Z","extensionVersion":"v3.4.3"}
@AmniX
AmniX / Node.kt
Created February 25, 2020 13:03
LinkList Node In Kotlin with Helper Functions
class Node<T>(var value : T, var next : Node<T>? = null){
override fun toString():String{
val result = StringBuilder()
var next = this.next
result.append(value)
while(next != null){
result.append(", ")
result.append(next.value)
next = next.next