Skip to content

Instantly share code, notes, and snippets.

View rotate_list.java
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode rotateRight(ListNode head, int k) {
View machine.js
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
View Redmine ERP Ticket Links
View The best Classifier with Machine learning.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Potential Maintainers
Maintainers:
oxalica: swapview, swapview, swapview
View Changed Paths
aarch64-linux swapview
i686-linux swapview
x86_64-linux swapview
View launcherTemplate.gradle
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
apply plugin: 'com.android.application'
dependencies {
implementation project(':unityLibrary')
implementation 'com.android.support:multidex:1.0.1'
}
android {
View storage_class_yaml_code
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: aws-efs
provisioner: satyam/aws-efs
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: efs-joomla
@sh0aib-ahmed
sh0aib-ahmed / Chatbot.py
Created Jul 15, 2020
this is a simple chatbot made with the help of python .
View Chatbot.py
from nltk.chat.util import Chat , reflections
pairs = [
['Hi my name is (.*)', ['Hi %1']],
['how are you ? ' , [ ' Thanks for asking I am fine '] ],
['what is your name ?' , ['My name is smokey']],
['How is the weather?' , ['Weather is nice out here ']],
['how do you know about (.*)' , ['i have heard %1 is nice this time of year']],
['can you help with something?' , ['Yes , i can help you with anything i am computer']],
['Okay , then take care' , ['You too ....... Byeeee.......']]
View mainTemplate.gradle
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
// Android Resolver Repos Start
([rootProject] + (rootProject.subprojects as List)).each {
ext {
it.setProperty("android.useAndroidX", true)
it.setProperty("android.enableJetifier", true)
}
}
([rootProject] + (rootProject.subprojects as List)).each { project ->
You can’t perform that action at this time.