Posts by Marcelo Mizuno • 1 point
2 posts
-
0
votes1
answer143
viewsA: Parse numerical set for sequential numbers
I think it’s a simpler and easier solution to understand: a = [(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15), (6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 20, 23, 24, 25), (1, 2, 3, 4, 10, 11, 12,…
-
0
votes1
answer1053
viewsA: Printing non tax PHP coupon
I think using only CSS and a little javascript can solve your problem. CSS #areaDeImpressao { display: none; } @media print { * { display: none; } #areaDeImpressao { display: block; } } HTML <div…