Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
RepoFusion
/
Stack-Repo
like
9
Follow
RepoFusion
25
ArXiv:
arxiv:
2206.12839
arxiv:
2306.10998
License:
other
Dataset card
Files
Files and versions
Community
1
main
Stack-Repo
/
data
/
train
/
ToreAad
/
Inf102
/
src
/
java
/
exercises
/
IStack.java
denisko
cnanged dir structure and removed features file
3e77472
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
132 Bytes
package
torea;
interface
IStack
<E>{
void
push
(E e)
;
E
pop
()
;
E
peek
()
;
boolean
isEmpty
()
;
int
size
()
;
}