MCPcopy Create free account
hub / github.com/SR-Sunny-Raj/Hacktoberfest2021-DSA / push

Method push

11. Stack/reverseStringStackGFG.java:20–23  ·  view source on GitHub ↗
(Stack<Character> stack, char item)

Source from the content-addressed store, hash-verified

18
19class Solution {
20 public void push(Stack<Character> stack, char item)
21 {
22 stack.push(item);
23 }
24 public char pop(Stack<Character> stack)
25 {
26 return stack.pop();

Callers 1

reverseMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected